Class java.lang.NegativeArraySizeException
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.NegativeArraySizeException

Object
   |
   +----Throwable
           |
           +----Exception
                   |
                   +----RuntimeException
                           |
                           +----java.lang.NegativeArraySizeException

public class NegativeArraySizeException
extends RuntimeException
Thrown if an application tries to create an array with negative size.

Version:
1.12, 07/01/98
Author:
unascribed
Since:
JDK1.0

Constructor Index

 o java.lang.NegativeArraySizeException()
Constructs a NegativeArraySizeException with no detail message.
 o java.lang.NegativeArraySizeException(String)
Constructs a NegativeArraySizeException with the specified detail message.

Constructors

 o NegativeArraySizeException
public NegativeArraySizeException()
Constructs a NegativeArraySizeException with no detail message.

Since:
JDK1.0
 o NegativeArraySizeException
public NegativeArraySizeException(String s)
Constructs a NegativeArraySizeException with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index